home *** CD-ROM | disk | FTP | other *** search
/ s-gikan2.maizuru-ct.ac.jp / s-gikan2.maizuru-ct.ac.jp.zip / s-gikan2.maizuru-ct.ac.jp / pub / ncvc352a_install.exe / {app} / scripts / remove_comment.pl < prev    next >
Perl Script  |  2004-04-02  |  237b  |  15 lines

  1. #! /usr/bin/perl
  2.  
  3. #  NCâfü[â^é╠()é╠ìsé≡ìφÅ£é╖éΘâXâNâèâvâg  #
  4.  
  5. $pre_file= $ARGV[0];
  6. $out_file= $ARGV[1];
  7. open(IN,$pre_file);
  8. open(OUT,">$out_file");
  9.  
  10. while(<IN>){
  11.     if(!/^N?[0-9\s]*\(/){ print OUT; }
  12. }
  13. close(OUT);
  14. close(IN);
  15.